<?php if ( ! function_exists( 'hiroshi_core_drag_cursor_icon' ) ) { /** * Function that add drag cursor icon into global js object * * @param $array * * @return mixed */ function hiroshi_core_drag_cursor_icon( $array ) { $array['dragCursor'] = hiroshi_core_get_svg_icon( 'drag-cursor' ); return $array; } add_filter( 'hiroshi_filter_localize_main_js', 'hiroshi_core_drag_cursor_icon' ); }